From 10c201baf2b07be3d88f04d9923f78222c691b4c Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 22 Jun 2019 09:11:43 +0200 Subject: [PATCH] phase1: make feed update and install errors fatal Do not continue building if the feed cloning failed. Signed-off-by: Jo-Philipp Wich --- phase1/master.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/phase1/master.cfg b/phase1/master.cfg index 6dfc378..d94b888 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -611,6 +611,7 @@ for target in targets: description = "Updating feeds", command=["./scripts/feeds", "update"], env = MakeEnv(tryccache=True), + haltOnFailure = True )) # feed @@ -618,7 +619,9 @@ for target in targets: name = "installfeeds", description = "Installing feeds", command=["./scripts/feeds", "install", "-a"], - env = MakeEnv(tryccache=True))) + env = MakeEnv(tryccache=True), + haltOnFailure = True + )) # seed config factory.addStep(FileDownload( -- 2.30.2